Skip to content

Instantly share code, notes, and snippets.

View gatukgl's full-sized avatar
🐤

Sudarat (Gatuk) Chattanon gatukgl

🐤
View GitHub Profile
import unittest
class FizzBuzzTest(unittest.TestCase):
def setUp(self):
self.fizzbuzz = FizzBuzz()
def test_number_indivisible_by_3_or_5_should_return_number(self):
result = self.fizzbuzz.take(1)
self.assertEqual(result, 1)
import unittest
#####################################################################
# UNIT TEST
#####################################################################
class FizzBuzzTest(unittest.TestCase):
def test_number_3_should_return_number_fizz(self):
fizzbuzz_factory = FizzBuzzFactory()
fizzbuzz = fizzbuzz_factory.create()
@gatukgl
gatukgl / roman_number.py
Last active August 29, 2015 14:05
Roman Number
######### Kata: Roman Number 1-30 #########
import unittest
class RomanNumberTest(unittest.TestCase):
def setUp(self):
self.roman_number = RomanNumber()
def test_number_1_should_return_I(self):
{
"editor.formatOnSave": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"prettier.singleQuote": true,
@gatukgl
gatukgl / heart.py
Created February 14, 2021 07:21
Drawing heart with turtle in Python
import turtle
turtle.pensize(3)
def draw_heart_curve():
for i in range(200):
turtle.right(1)
turtle.forward(1)
turtle.color("pink", "pink")
{
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"arrowParens": "avoid"
}
// const and let
const name = 'gatuk'
console.log('const name >', name)
let mutableName = ''
mutableName = 'gatuk'
console.log('let mutable name > ', mutableName)
if (mutableName === 'gatuk') {
const name = 'someone'
@gatukgl
gatukgl / MainGameInteraction.py
Last active May 9, 2021 13:23
This code intend to be an example of Python code before having Pattern Matching.
def interact(action):
command = action.split()[0]
if command == "walking":
direction = action.split()[1]
goTo(direction)
elif command == "pickup":
item = action.split()[1]
save(item)
@gatukgl
gatukgl / GameInteractionActions.py
Created May 9, 2021 13:25
This code intend to be an example of Python code before having Pattern Matching.
def quitGame():
print("🔴 Quit the game and go back to main page.")
def goTo(direction):
print(f"👣 Walking {direction}...")
def save(item):
print(f"💾 You got {item} 1 ea")
@gatukgl
gatukgl / GameInteractionWithPatternMatching.py
Created May 9, 2021 13:54
This code intend to be an example of Python code that has Pattern Matching.
def interact(action):
match action.split():
case ["walking", direction]:
goTo(direction)
case ["pickup", item]:
save(item)
case ["quit"]:
quitGame()
case _:
print("😵 Don't know this command")