Trying to create a frontend with nice UX, as a full backend developer
by @racecore

oozey mess
Not today Justin
trying on a metaphor
ojovivo
PUT YOUR BEARD IN MY MOUTH

祝日 / Permanent Vacation
NASA
taylor price

No title available

tannertan36

Origami Around

No title available

if i look back, i am lost
occasionally subtle
Sweet Seals For You, Always
hello vonnie
Lint Roller? I Barely Know Her
we're not kids anymore.
Sade Olutola
AnasAbdin

seen from United Kingdom

seen from United States

seen from Malaysia
seen from Libya
seen from Malaysia
seen from United States
seen from United States
seen from United States
seen from United States
seen from United States
seen from Germany

seen from United Kingdom

seen from United Kingdom
seen from Kenya

seen from Malaysia

seen from United Kingdom
seen from Brazil
seen from United Kingdom
seen from United Kingdom

seen from Ireland
@dotnetgeorge
Trying to create a frontend with nice UX, as a full backend developer
by @racecore
Finding out that Redis has been running in no-save-to-disk mode for 6 months
by Baron
[EASY] Packaging Cupcakes - CodeChef
[EASY] Packaging Cupcakes – CodeChef
Here is the problem: http://www.codechef.com/problems/MUFFINS3/ And here is my solution. I get 0.01s with this code.
length = int(raw_input()) for i in range(0, length): number = int(raw_input()) print ((number / 2) + 1)
View On WordPress
[EASY] Ciel and A-B Problem - CodeChef
[EASY] Ciel and A-B Problem – CodeChef
Here is the problem: http://www.codechef.com/problems/CIELAB/ And here is my solution. I get 0.32s with this code.
numbers = map(int, raw_input().split()) check = numbers[0] - numbers[1] if(check % 10 == 9): print check - 1 else: print check + 2
View On WordPress
[EASY] Chef-jumping - CodeChef
[EASY] Chef-jumping – CodeChef
Here is the problem: http://www.codechef.com/problems/OJUMPS/ And here is my solution. I get 0.00s with this code.
number = int(raw_input()) if ((number % 6 == 0) or (number % 6 == 1) or (number % 6 == 3)): print "yes" else: print "no"
View On WordPress
[EASY] Prime Palindromes - CodeChef
[EASY] Prime Palindromes – CodeChef
Here is the problem: http://www.codechef.com/problems/PRPALIN/ And here is my solution. I get 0.14s with this code.
primeNumbers =…
View On WordPress
[EASY] Small Factorials - CodeChef
[EASY] Small Factorials – CodeChef
Here is the problem: http://www.codechef.com/problems/FCTRL2/ And here is my solution. I get 0.04s with this code.
import math length = int(raw_input()) for i in range(0, length): number = int(raw_input()) print math.factorial(number)
View On WordPress
[EASY] Delta Time - CodeEval
[EASY] Delta Time – CodeEval
Here is the problem: https://www.codeeval.com/open_challenges/166/ And here is my solution. I get 100% with this code.
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Globalization; class DeltaTime { public static string line = null; static void Main(string[] args) { List readFile = ReadFileLines(args[0]); List deltaTime =…
View On WordPress
[EASY] The Major Element - CodeEval
[EASY] The Major Element – CodeEval
Here is the problem: https://www.codeeval.com/open_challenges/132/ And here is my solution. I get 100% with this code.
using System; using System.IO; using System.Linq; using System.Text; using System.Collections.Generic; class TheMajorElement { public static string line = null; static void Main(string[] args) { List readFile = ReadFileLines(args[0]); string result = FindMajorElement(readFile);…
View On WordPress
[EASY] JSON menu IDs - CodeEval
[EASY] JSON menu IDs – CodeEval
Here is the problem: https://www.codeeval.com/open_challenges/102/ And here is my solution. I get 100% with this code.
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Text.RegularExpressions; class JSONMenuIDs { public static string line = null; static void Main(string[] args) { List readFileLines = ReadFile(args[0]); List…
View On WordPress
[EASY] Sum of Digits - CodeEval
[EASY] Sum of Digits – CodeEval
Here is the problem: https://www.codeeval.com/open_challenges/21/ And here is my solution. I get 100% with this code.
using System; using System.IO; using System.Collections.Generic; using System.Linq; class SumОfDigits { public static string line = null; public static int length = 0; static void Main(string[] args) { List numbers = NumbersFromFile(args[0]); List sumOfDigits =…
View On WordPress
[EASY] Yet Another Number Game - CodeChef
[EASY] Yet Another Number Game – CodeChef
Here is the problem: http://www.codechef.com/problems/NUMGAME/ And here is my solution. I get 0.02s with this code.
length = int(raw_input()) for i in range(0, length): number = int(raw_input()) if(number % 2 == 0): print "ALICE" else: print "BOB"
View On WordPress
[EASY] Read More - CodeEval
[EASY] Read More – CodeEval
Here is the problem: https://www.codeeval.com/open_challenges/115/ And here is my solution. I get 92% with this code.
using System; using System.Collections.Generic; using System.Text; using System.IO; class ReadMore { public static string line = null; static void Main(string[] args) { List readFile = ReadFile(args[0]); List formatText = FormatText(readFile); PrintFormatedText(formatText); }…
View On WordPress
[EASY] Mixed Content - CodeEval
[EASY] Mixed Content – CodeEval
Here is the problem: https://www.codeeval.com/open_challenges/115/
And here is my solution. I get 100% with this code.
using System; using System.IO; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; class Program { static void Main(string[] args) { StreamReader reader = new StreamReader(args[0]); List lines = new List(); List words = new List(); List…
View On WordPress
[EASY] Morse Code - CodeEval
[EASY] Morse Code – CodeEval
Here is the problem: https://www.codeeval.com/open_challenges/116/
And here is my solution. I get 100% with this code.
using System; using System.IO; using System.Linq; using System.Collections.Generic; class Program { static void Main(string[] args) { StreamReader reader = new StreamReader(args[0]); List lines = new List(); List splitLine = new List(); List results = new List(); string result…
View On WordPress
[MODERATE] Prime Numbers - CodeEval
[MODERATE] Prime Numbers – CodeEval
Here is the problem: https://www.codeeval.com/open_challenges/46/
And here is my solution. I get 100% with this code.
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; class Program { static void Main(string[] args) { StreamReader reader = new StreamReader(args[0]); List lines = new List(); StringBuilder results = new StringBuilder(); string…
View On WordPress
[MODERATE] Longest Lines - CodeEval
[MODERATE] Longest Lines – CodeEval
Here is the problem: https://www.codeeval.com/open_challenges/2/
And here is my solution. I get 100% with this code.
using System; using System.IO; using System.Collections.Generic; using System.Linq; class Program { static void Main(string[] args) { StreamReader reader = new StreamReader(args[0]); List lines = new List(); using (reader) { string line = reader.ReadLine(); while (line != null) {…
View On WordPress