Skip to content

Instantly share code, notes, and snippets.

View sangohan's full-sized avatar

Chii sangohan

View GitHub Profile
@sangohan
sangohan / 1 Main.hx
Last active August 29, 2015 14:16 — forked from nadako/1 Main.hx
import haxe.macro.Context;
import haxe.macro.Expr;
using haxe.macro.ExprTools;
class Main
{
inline static var QUOTED_FIELD_PREFIX = "@$__hx__";
static function main()
@sangohan
sangohan / ArrayRead.hx
Last active August 29, 2015 14:16 — forked from nadako/ArrayRead.hx
abstract ArrayRead<T>(Array<T>) from Array<T> {
@:arrayAccess inline function get(i:Int):T return this[i];
public var length(get,never):Int;
inline function get_length() return this.length;
}
  1. General Background and Overview
@sangohan
sangohan / gist:ea5358ab5750dbe4a3e4
Created June 20, 2014 13:40
supersimplesemantics pom file
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.darkflame</groupId>
<artifactId>supersimplesemantics</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>super simple semantics</name>
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
data:text/html, <style type="text/css">#e{position:absolute;top:0;right:0;bottom:0;left:0;}</style><div id="e"></div><script src="http://d1n0x3qji82z53.cloudfront.net/src-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script><script>var e=ace.edit("e");e.setTheme("ace/theme/monokai");e.getSession().setMode("ace/mode/ruby");</script>
import it.unimi.dsi.fastutil.objects.*;
public static void main(String[] args) {
BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
Object2IntMap h = new Object2IntMap();
String l;
int max = 0;
try {
while ((l = stdin.readLine()) != null) {
int x = 1;
if (h.containsKey(l)) {