A Pen by Cesar Augusto Nogueira on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def reverseString(st): | |
rev = "" | |
for i in range(0 ,len(st)): | |
rev += st[(len(st) -1) - i] | |
return rev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def is_prime(x): | |
if x < 2: | |
return False | |
elif x == 2: | |
return True | |
else: | |
for n in range(2, x): | |
print n | |
if x % n == 0: | |
return False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def factorial(n): | |
if n == 0: | |
return 1 | |
else: | |
return n * factorial(n-1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def digit_sum(n): | |
total = 0 | |
numberStringfied = str(n) | |
listNumbers = list(numberStringfied) | |
for n in listNumbers: | |
total += int(n) | |
return total | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def is_int(x): | |
if(x < 0): | |
x = abs(x) | |
if ((x - int(round(x))) > 0): | |
return False | |
else: | |
return True | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
A Pen by Cesar Augusto Nogueira on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class TestMultipleHeritance { | |
interface Client { | |
default BigDecimal calculate(BigDecimal value) { | |
return value.multiply(new BigDecimal(10)).divide(new BigDecimal(100)); | |
} | |
} | |
interface Sing { | |
default void sing() { | |
System.out.println("I like to sing..."); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class TesteHerancaMultipla { | |
interface Cliente { | |
default BigDecimal calcular(BigDecimal valor) { | |
return valor.multiply(new BigDecimal(10)).divide(new BigDecimal(100)); | |
} | |
} | |
public interface Cantar { | |
default void cantar() { | |
System.out.println(“Gosto de cantar la la la…”); |