Category: string
Question: Given a string containing only numbers, restore it by returning all possible IP addresses (in a vector) Original Problem Page: http://oj.leetcode.com/problems/restore-ip-addresses/ Examples: Given "25525511135", return . (Order does not matter) A …
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. Note: For the purpose of this problem, we define empty string as valid …
October 17, 2013
16 bit, assembly language, code, DOS, DOSBOX, implementation, MSDOS 16-bit, programming languages, string, windows
16-bit DOS has been obsolete. But learning 16-bit Assembly helps up understand how underlying system works and it is fun programming using assembly. 16-bit Assembly is similar to 32-bit …
August 6, 2013
COM/OLE, implementation, interpreter / compiler, javascript, nodejs, programming languages, recursive, string, technical, tools / utilities, tricks, windows
Node.JS (http://nodejs.org/) has been a great Javascript-server side tool). Previous posts on this topic can be found . However, the NodeJS does not inherently support the Win32 COM/OLE techniques …
The problem is from codeforces: http://www.codeforces.com/problemset/problem/278/B The problem asks for the first sequence (sorted in alphabetic order) of character(s) that is not a substring of the given list of strings.The …