Skip to content
View Pomeha's full-sized avatar
💎
Keep calm and code
💎
Keep calm and code

Block or report Pomeha

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Решения задачи про гири. Условие: Су... Решения задачи про гири. Условие: Сумма весов гирь с левой стороны никогда не будет равна сумме весов гирь с правой
    1
    class WeightTask
    2
      def call
    3
        max = 32
    4
    
                  
    5
        (1..max-6).each do |a|
  2. Simple new emails parcer with IMAP f... Simple new emails parcer with IMAP for rails with gem 'mail'
    1
    # frozen_string_literal: true
    2
    
                  
    3
    class Mails::ReceiveRecent
    4
      def call
    5
        client = Mails::SetClient.new.call
  3. paypal_mocks_for_rspec.rb paypal_mocks_for_rspec.rb
    1
    before do 
    2
      paypal_payout_object = double
    3
      payout_batch = double
    4
      allow(payout_batch).to receive_message_chain(:batch_header, :payout_batch_id).and_return(payout_batch_id)
    5
      allow(payout_batch).to receive_message_chain(:batch_header, :batch_status).and_return(payout_batch_status)
  4. load_agents_clients.rb load_agents_clients.rb
    1
    ApplicationRecord.connection.execute('SELECT clients.*,
    2
    (CASE WHEN agents_clients.id is NULL then 0 else 1 END)
    3
      AS joined FROM clients
    4
      LEFT JOIN agents_clients
    5
      on clients.id = agents_clients.client_id
  5. dijkstra_parallel dijkstra_parallel Public

    Параллельный поиск кратчайшего пути Дейкстра

    C++

  6. dijkstra_single dijkstra_single Public

    Поиск кратчайшего пути Дейкстра на одном ПЭ

    C#