Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Sichere ProgrammierungWhat is Programming And How i can Enjoy it?(24.09.2026 um 11:54 Uhr)
Sichere ProgrammierungYou Don't Need Adobe Commerce Cloud to Survive Black Friday(24.09.2026 um 11:55 Uhr)
Malware / Trojaner / VirenBeyond Lazarus: Organization of DPRK cyber capabilities(24.09.2026 um 11:59 Uhr)
Malware / Trojaner / VirenBeyond Lazarus: Organization of DPRK Cyber Capabilities(24.09.2026 um 11:59 Uhr)
Malware / Trojaner / VirenThe fake worker threat and the rise of human infiltration(24.09.2026 um 11:59 Uhr)
Malware / Trojaner / VirenPolinRider Spreads Through Compromised GitHub Accounts and Packagist(24.09.2026 um 11:59 Uhr)
Malware / Trojaner / VirenWeaselBiscuit Strips BeaverTail and OtterCookie Down to Essentials(24.09.2026 um 11:59 Uhr)
Sichere ProgrammierungWhat is Programming And How i can Enjoy it?(24.09.2026 um 11:54 Uhr)
Sichere ProgrammierungYou Don't Need Adobe Commerce Cloud to Survive Black Friday(24.09.2026 um 11:55 Uhr)
Malware / Trojaner / VirenBeyond Lazarus: Organization of DPRK cyber capabilities(24.09.2026 um 11:59 Uhr)
Malware / Trojaner / VirenBeyond Lazarus: Organization of DPRK Cyber Capabilities(24.09.2026 um 11:59 Uhr)
Malware / Trojaner / VirenThe fake worker threat and the rise of human infiltration(24.09.2026 um 11:59 Uhr)
Malware / Trojaner / VirenPolinRider Spreads Through Compromised GitHub Accounts and Packagist(24.09.2026 um 11:59 Uhr)
Malware / Trojaner / VirenWeaselBiscuit Strips BeaverTail and OtterCookie Down to Essentials(24.09.2026 um 11:59 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

1652. Defuse the Bomb

1652. Defuse the Bomb Difficulty: Easy Topics: Array, Sliding Window You have a bomb to defuse, and your time is running out! Your informer will provide you with a circular array code of length of n and a key k. To decrypt the code,…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

1652. Defuse the Bomb



Difficulty: Easy



Topics: Array, Sliding Window



You have a bomb to defuse, and your time is running out! Your informer will provide you with a circular array code of length of n and a key k.



To decrypt the code, you must replace every number. All the numbers are replaced simultaneously.




  • If k > 0, replace the ith number with the sum of the next k numbers.

  • If k < 0, replace the ith number with the sum of the previous k numbers.

  • If k == 0, replace the ith number with 0.



As code is circular, the next element of code[n-1] is code[0], and the previous element of code[0] is code[n-1].



Given the circular array code and an integer key k, return the decrypted code to defuse the bomb!



Example 1:





  • Input: code = [5,7,1,4], k = 3


  • Output: [12,10,16,13]


  • Explanation: Each number is replaced by the sum of the next 3 numbers. The decrypted code is [7+1+4, 1+4+5, 4+5+7, 5+7+1]. Notice that the numbers wrap around.



Example 2:





  • Input: code = [1,2,3,4], k = 0


  • Output: [0,0,0,0]


  • Explanation: When k is zero, the numbers are replaced by 0.



Example 3:





  • Input: code = [2,4,9,3], k = -2


  • Output: [12,5,6,13]


  • Explanation: The decrypted code is [3+9, 2+3, 4+2, 9+4]. Notice that the numbers wrap around again. If k is negative, the sum is of the previous numbers.



Constraints:




  • n == code.length

  • 1 <= n <= 100

  • 1 <= code[i] <= 100

  • -(n - 1) <= k <= n - 1



Hint:




  1. As the array is circular, use modulo to find the correct index.

  2. The constraints are low enough for a brute-force solution.



Solution:



We can implement a function that iterates over the code array and computes the sum of the appropriate numbers based on the value of k.



The general approach will be as follows:




  1. If k == 0, replace all elements with 0.

  2. If k > 0, replace each element with the sum of the next k elements in the circular array.

  3. If k < 0, replace each element with the sum of the previous k elements in the circular array.



The circular nature of the array means that for indices that exceed the bounds of the array, you can use modulo (%) to "wrap around" the array.



Let's implement this solution in PHP: 1652. Defuse the Bomb




<?php
/**
* @param Integer[] $code
* @param Integer $k
* @return Integer[]
*/

function decrypt($code, $k) {
...
...
...
/**
* go to ./solution.php
*/

}

// Example Usage
$code1 = [5, 7, 1, 4];
$k1 = 3;
print_r(decrypt($code1, $k1)); // Output: [12, 10, 16, 13]

$code2 = [1, 2, 3, 4];
$k2 = 0;
print_r(decrypt($code2, $k2)); // Output: [0, 0, 0, 0]

$code3 = [2, 4, 9, 3];
$k3 = -2;
print_r(decrypt($code3, $k3)); // Output: [12, 5, 6, 13]
?>









Explanation:





  1. Initialization:




    • We create a result array initialized with zeros using array_fill.




  2. Handling k == 0:




    • If k is zero, the output array is simply filled with zeros, as required by the problem.




  3. Iterating Through the Array:




    • For each index i in the array:


      • If k > 0, sum the next k elements using modulo arithmetic to wrap around.

      • If k < 0, sum the previous |k| elements using modulo arithmetic with an offset to handle negative indices.






  4. Modulo Arithmetic:




    • We use ($i + $j) % $n to wrap around to the beginning of the array when accessing indices greater than n - 1.

    • Similarly, ($i - $j + $n) % $n handles backward wrapping for negative indices.




  5. Complexity:




    • Time Complexity: O(n . |k|), where n is the size of the array and |k| is the absolute value of k.

    • Space Complexity: O(n) for the result array.








Outputs:



The provided examples match the expected results. Let me know if you need further explanation or optimizations!



Contact Links



If you found this series helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks 😍. Your support would mean a lot to me!



If you want more helpful content like this, feel free to follow me:



SOC Incident Playbook: Remote Code Execution (RCE) Defense
title: Detect Exploitation - 1652. Defuse the Bomb
id: 6bb74fd7-4a62-4769-a2b0-cf27fd96fb3b
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-24
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-24"
        description = "YARA Signature for "
    strings:
        $str = "1652. Defuse the Bomb" ascii wide
    condition:
        any of them
}
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich 1652. Defuse the Bomb.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten 1652. Defuse the Bomb

Thematisch verwandte Begriffe: 1652, Defuse, Bomb · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-97152 | Nanomsg versions 0.5-beta through 1.x before 1.2.3 has a remotely exploi…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick