Skip to content

Instantly share code, notes, and snippets.

@fermopili
Created May 19, 2017 11:34
Show Gist options
  • Save fermopili/127c4a361ae484ca1e6e802a626752ef to your computer and use it in GitHub Desktop.
Save fermopili/127c4a361ae484ca1e6e802a626752ef to your computer and use it in GitHub Desktop.
com.javarush.task.task36.task3613
package com.javarush.task.task36.task3613;
import java.util.concurrent.SynchronousQueue;
/*
Найти класс по описанию
*/
public class Solution
{
public static void main(String[] args)
{
System.out.println ( getExpectedClass ( ) );
}
public static Class getExpectedClass()
{
return SynchronousQueue.class;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment