This file contains hidden or 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
using System; | |
using System.Linq; | |
namespace put_apple_to_basket | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var apples = new int[] { 6, 16, 26, 36, 46, 56, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69 }; | |
var r = 6; |
This file contains hidden or 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
exports.default = hiragana2romaji; | |
// 変換テーブル; 文字数の多いものから登録していく | |
const convtables = [ | |
{ // 3文字 | |
"っきゃ": "kkya", | |
"っきぃ": "kkyi", | |
"っきゅ": "kkyu", | |
"っきぇ": "kkye", | |
"っきょ": "kkyo", |
OlderNewer