Skip to content

Commit d7cbe82

Browse files
committed
Replace python2.7
1 parent 68dc890 commit d7cbe82

152 files changed

Lines changed: 152 additions & 152 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

DMOJ/bf1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Ivan Carvalho
22
# Solution to https://dmoj.ca/problem/bf1
3-
#!/usr/bin/env python2.7
3+
#!/usr/bin/env python
44
# -*- coding : utf-8 -*-
55
a = int(input())
66
v = []

DMOJ/bf1hard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Ivan Carvalho
22
# Solution to https://dmoj.ca/problem/bf1hard
3-
#!/usr/bin/env python2.7
3+
#!/usr/bin/env python
44
# -*- coding : utf-8 -*-
55
from sys import stdin
66

DMOJ/boolean.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Ivan Carvalho
22
# Solution to https://dmoj.ca/problem/boolean
3-
#!/usr/bin/env python2.7
3+
#!/usr/bin/env python
44
# -*- coding : utf-8 -*-
55
a = input()
66
print(eval(a))

DMOJ/ccc10j5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Ivan Carvalho
22
# Solution to https://dmoj.ca/problem/ccc10j5
3-
#!/usr/bin/env python2.7
3+
#!/usr/bin/env python
44
# -*- coding : utf-8 -*-
55
from collections import deque
66

DMOJ/ccc96s4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Ivan Carvalho
22
# Solution to https://dmoj.ca/problem/ccc96s4
3-
#!/usr/bin/env python2.7
3+
#!/usr/bin/env python
44
# -*- coding : utf-8 -*-
55
def to_roman(entrada):
66
array = []

DMOJ/cco10p6.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Ivan Carvalho
22
# Solution to https://dmoj.ca/problem/cco10p6
3-
#!/usr/bin/env python2.7
3+
#!/usr/bin/env python
44
# -*- coding : utf-8 -*-
55
alfabeto = "ABCDEFGHIJKLMNOPQRSTUVWXYZ_"
66
tamanho = 27

DMOJ/factorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Ivan Carvalho
22
# Solution to https://dmoj.ca/problem/factorial
3-
#!/usr/bin/env python2.7
3+
#!/usr/bin/env python
44
# -*- coding : utf-8 -*-
55
mod = 2**32
66
testes = int(input())

DMOJ/gfssoc16s1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Ivan Carvalho
22
# Solution to https://dmoj.ca/problem/gfssoc16s1
3-
#!/usr/bin/env python2.7
3+
#!/usr/bin/env python
44
# -*- coding : utf-8 -*-
55
from collections import deque
66

DMOJ/gfssoc3s1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Ivan Carvalho
22
# Solution to https://dmoj.ca/problem/gfssoc3s1
3-
#!/usr/bin/env python2.7
3+
#!/usr/bin/env python
44
# -*- coding : utf-8 -*-
55
n = int(input())
66
resp = ""

SPOJ/ADAHACK.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Ivan Carvalho
22
# Solution to https://www.spoj.com/problems/ADAHACK/
3-
#!/usr/bin/env python2.7
3+
#!/usr/bin/env python
44
# -*- coding : utf-8 -*-
55
modulo = 10**11 + 3
66

0 commit comments

Comments
 (0)